Arduino Morse Code Translator by Elif AVCU

Arduino Morse Code Translator by Elif AVCU

Author:Elif AVCU [AVCU, Elif]
Language: eng
Format: epub
Published: 2020-03-01T17:00:00+00:00


pinMode(ledPin, OUTPUT);

Serial.begin(9600);

}

void loop() {

// put your main code here, to run repeatedly:

char ch;

if (Serial.available())

{

ch = Serial.read(); // read a single letter if (ch >= 'a' && ch <= 'z')

if (ch >= 'a' && ch <= 'z')

{

flashSequence(letters[ch - 'a']);

}

else if (ch >= 'A' && ch <= 'Z') {

flashSequence(letters[ch - 'A']); }

else if (ch >= '0' && ch <= '9') {

flashSequence(numbers[ch - '0']); }

else if (ch == ' ') {

delay(dotDelay * 4);

}

}

}

void flashSequence(char* sequence) {

int i = 0;

while (sequence[i] != NULL) {

flashDotOrDash(sequence[i]);

i++; }

delay(dotDelay * 3);

}



Download



Copyright Disclaimer:
This site does not store any files on its server. We only index and link to content provided by other sites. Please contact the content providers to delete copyright contents if any and email us, we'll remove relevant links or contents immediately.